Google News
logo
ReactJS - Quiz(MCQ)
What do you need to change about this code to get it to run?
class clock extends React.Component {
  render() {
    return <h1>Look at the time: {this.props.time}</h1>;
  }
}
A)
Remove this
B)
Capitalize clock
C)
Remove the render method
D)
Add quotes around the return value

Correct Answer :   Capitalize clock